home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
usr
/
lib
/
pm-utils
/
sleep.d
/
00clear
next >
Wrap
Text File
|
2008-10-15
|
391b
|
21 lines
#!/bin/sh
# Ensure we eare in text mode by switching to an unused vt.
# Also avoids lots of ghastly suspend/resume errors due to trying
# to suspend/resume while running in X.
. "${PM_FUNCTIONS}"
case "$1" in
hibernate|suspend)
fgconsole |savestate console
chvt 63
;;
thaw|resume)
state_exists console || exit 1
chvt $(restorestate console)
deallocvt 63
;;
*)
;;
esac